home *** CD-ROM | disk | FTP | other *** search
/ Ice Princess Press Kit / Ice Princess Press Kit.iso / pc / program.dxr / Internal_26_Preview Back Button.ls < prev    next >
Encoding:
Text File  |  2005-03-02  |  330 b   |  23 lines

  1. on mouseWithin me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp me
  10.   cursor(0)
  11.   sound(3).play(member("Click"))
  12.   case the frameLabel of
  13.     "Preview_1A":
  14.       go("Preview_4")
  15.     "preview_2A":
  16.       go("Preview_1")
  17.     "Preview_3a":
  18.       go("Preview_2")
  19.     "Preview_4a":
  20.       go("preview_3")
  21.   end case
  22. end
  23.